Hi there |
Re: Sending emails for certain attributes Problem is, all those modules get left open. If it were me, I'd write an on-demand batch script scheduled to run every night, looking for suspect links that featured changes in the attributes you want. It accumulates an email for each person affected by any such links. After browsing all objects in all modules in your Project and accumulating 'notices', it sends one email to each affected user, listing all such suspect links that user cares about. Narrowing down which attributes is performed by browsing the History of the target object looking for changes to your attributes, getting the History date, and comparing it to some 'Suspect Link' Date link-attribute whose name escapes me.
|
Here is one I did years ago... Attachments attachment_14470673_setEmailTrigv3_2.dxl |
Re: Here is one I did years ago... pete.giorgianni - Wed May 26 08:01:50 EDT 2010
Hey Pete, // in a persistent trigger don't do this: Object o = current // instead do this: Trigger T = current if (null T) halt Object o = object T; if (null o) halt Module m = module T; if (null m) halt
Mathias Mamsch, IT-QBase GmbH, Consultant for Requirement Engineering and D00RS
|
Re: Here is one I did years ago... Mathias Mamsch - Wed May 26 08:53:40 EDT 2010
Hey Pete, // in a persistent trigger don't do this: Object o = current // instead do this: Trigger T = current if (null T) halt Object o = object T; if (null o) halt Module m = module T; if (null m) halt
Mathias Mamsch, IT-QBase GmbH, Consultant for Requirement Engineering and D00RS
|